home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7025.txt < prev    next >
Text File  |  1994-10-06  |  540b  |  21 lines

  1. Pauses until the user presses a keyboard key
  2.  
  3. GetKeyDown(VAR aCode : INTEGER);
  4.  
  5. Draws a line from a fixed point specified by X1,Y1 to a mouse defined point. X2,Y2 are not returned until the mouse is clicked
  6.  
  7. GetPtL(X1,Y1 : REAL;  VAR X2,Y2 : REAL);
  8.  
  9. Returns X,Y coordinates by using the mouse. X,Y are not returned until the mouse is clicked
  10.  
  11. GetPt(VAR X,Y : REAL);
  12.  
  13. Allows the user to create a line using the mouse
  14.  
  15. GetLine(VAR X1,Y1,X2,Y2 : REAL);
  16.  
  17. Allows the user to create a rectangle using the mouse
  18.  
  19. GetRect(VAR X1,Y1,X2,Y2 : REAL);
  20.  
  21.